home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue29 / web / WEBLST4.WS < prev   
Encoding:
Text File  |  1997-10-07  |  358 b   |  11 lines

  1. Cookies := TStringList.Create;
  2. ...
  3. Cookies.Add('Delphi=Cool');
  4. Cookies.Add('JBuilder=Wait and see');
  5. // set cookies which will be sent back only to the current domain and path
  6. // their expiry date is 7 days from today and will be sent over a non-secure
  7. // HTTP connection
  8. Response.SetCookieField(Cookies, '', '', Now + 7, False);
  9. ...
  10. Cookies.Free;
  11.